Package-level declarations

Types

Link copied to clipboard
data class MobilePaymentsTypography(val button: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(), fontSize = 16.sp, color = MobilePaymentsStyleProvider.colors.getLightText(), ), val header: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(), fontSize = 24.sp, color = MobilePaymentsStyleProvider.colors.getDarkText(), ), val bodyXLarge: TextStyle = TextStyle( fontWeight = FontWeight.Normal, fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(), fontSize = 18.sp, color = MobilePaymentsStyleProvider.colors.getDarkText(), ), val bodyXLargeBold: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontFamily = MobilePaymentsStyleProvider.fonts.getHeaderFont(), fontSize = 18.sp, color = MobilePaymentsStyleProvider.colors.getDarkText(), ), val bodyLarge: TextStyle = TextStyle( fontWeight = FontWeight.Normal, fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(), fontSize = 16.sp, color = MobilePaymentsStyleProvider.colors.getDarkText(), ), val bodyLargeBold: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(), fontSize = 16.sp, color = MobilePaymentsStyleProvider.colors.getDarkText(), ), val bodyMedium: TextStyle = TextStyle( fontWeight = FontWeight.Normal, fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(), fontSize = 14.sp, color = MobilePaymentsStyleProvider.colors.getDarkText(), ), val bodyMediumBold: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(), fontSize = 14.sp, color = MobilePaymentsStyleProvider.colors.getDarkText(), ), val bodySmall: TextStyle = TextStyle( fontWeight = FontWeight.Normal, fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(), fontSize = 12.sp, color = MobilePaymentsStyleProvider.colors.getDarkText(), ), val bodySmallBold: TextStyle = TextStyle( fontWeight = FontWeight.Bold, fontFamily = MobilePaymentsStyleProvider.fonts.getBodyFont(), fontSize = 12.sp, color = MobilePaymentsStyleProvider.colors.getDarkText(), ))

Functions

Link copied to clipboard
fun MobilePaymentsTheme(darkTheme: Boolean = isSystemInDarkTheme(), dynamicColor: Boolean = true, content: @Composable () -> Unit)